home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / src / gdb-4.12 / libibert / vprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-03  |  188 b   |  12 lines

  1. #include <stdio.h>
  2. #include <varargs.h>
  3. #include <ansidecl.h>
  4. #undef vprintf
  5. int
  6. vprintf (format, ap)
  7.      const char *format;
  8.      va_list ap;
  9. {
  10.   return vfprintf (stdout, format, ap);
  11. }
  12.